{% extends "base.html" %} {% block title %}Manage Doctors - Admin Panel{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Verify credentials and manage healthcare professional accounts
| # | Doctor Information | Specialty | Experience | Location | Status | Actions |
|---|---|---|---|---|---|---|
| {{ loop.index }} |
{% if doctor.user.profile_picture %}
{{ doctor.user.name }}{{ doctor.user.email }}
|
{{ doctor.category.title() }} | {{ doctor.experience }} Years | {{ doctor.city.title() }} {{ doctor.location|truncate(25) }} |
{% if doctor.is_approved %} Approved {% elif doctor.appeal_status == 'rejected' %} Rejected {% elif doctor.appeal_status == 'suspended' %} Suspended {% else %} Pending {% endif %} |